home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / backsub < prev    next >
Text File  |  1994-04-25  |  540b  |  24 lines

  1. backsub:
  2.  
  3. Syntax:    backsub ( LIST, B )
  4.  
  5. Description:
  6.  
  7.     The backsub function computes the solution to the set of
  8.     linear equations described by:
  9.  
  10.         A * X = B
  11.  
  12.     The 1st argument to backsub (LIST) is the result from
  13.     `factor(A)'. The second argument to backsub is the matrix B. B
  14.     can contain multiple right hand sides.
  15.  
  16.     Backsub returns a matrix X which contains the solution(s) to
  17.     the aforementioned equations.
  18.  
  19.     Backsub utilizes the LAPACK subroutines DGETRS or ZGETRS.
  20.  
  21.     Example:    X = backsub (factor (A), B);
  22.  
  23. See Also: factor, inv, solve
  24.